Interface UserAuthenticationInputCallback


public interface UserAuthenticationInputCallback
  • Method Details

    • onUserAuthenticationInputSuccess

      @Deprecated void onUserAuthenticationInputSuccess(CharSequence input)
      Deprecated.
      Need to be called to inform the Orchestration library of the user input. The conformity of that input can be checked by the Orchestration library. That input can be used to encrypt the secret. This method has been deprecated and will be removed in a future version. Use onUserAuthenticationSuccess(CharSequence) instead.
    • onUserAuthenticationSuccess

      void onUserAuthenticationSuccess(CharSequence input) throws AuthenticationInputException
      Need to be called to inform the Orchestration library of the user input. The input can be used to encrypt the secret.
      Parameters:
      input - pin value provided on successful user authentication. It can be used to encrypt the secret
      Throws:
      AuthenticationInputException - when this method is called for any authentication type other than the UserAuthenticationCallback.UserAuthentication.PASSWORD type.
    • onUserAuthenticationSuccess

      void onUserAuthenticationSuccess() throws AuthenticationInputException
      Need to be called to inform the Orchestration library of successful user authentication.
      Throws:
      AuthenticationInputException - when this method is called for the UserAuthenticationCallback.UserAuthentication.PASSWORD type.
    • onUserAuthenticationAborted

      void onUserAuthenticationAborted()
      Need to be called to inform the Orchestration library of an aborted authentication flow.
    • onUserAuthenticationInputAborted

      @Deprecated void onUserAuthenticationInputAborted()
      Deprecated.
      Need to be called to inform the Orchestration library of an aborted authentication flow. This method has been deprecated and will be removed in a future version. Use onUserAuthenticationAborted() instead.